home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
editor
/
blksedtr.lha
/
BED
/
Rexx
/
UnIndentBlk.bed
< prev
next >
Wrap
Text File
|
1996-01-28
|
483b
|
36 lines
/*
** $VER: UnindentBlk.bed 1.0 (02.01.96)
**
** Unindent the selected block
*/
OPTIONS RESULTS
SetInputLock ON
SetDisplayLock ON
GetBlkDims
PARSE VAR RESULT mode . start . end
GetCursorPos
PARSE VAR RESULT y x .
IF mode = OFF THEN DO
SetStatusBar "Error: No block selected!"
END; ELSE DO
SetStatusBar "Unindenting the block..."
Move LINE start
RecordMacro QUIET
ShiftLeft TABS
MoveDown
EndMacro
PlayMacro end-start
Move y x
END
SetDisplayLock OFF
SetInputLock OFF